







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Syntax
C# |
---|
[SerializableAttribute] public abstract class ReadOnlyListBase<T> |
Visual Basic (Declaration) |
---|
<SerializableAttribute> _ Public MustInherit Class ReadOnlyListBase(Of T) |
Visual C++ |
---|
[SerializableAttribute] generic<typename T> public ref class ReadOnlyListBase abstract |
Type Parameters
- T
The type exposes the following properties.
Public Properties
Name | Description | |
---|---|---|
![]() | Count |
The property must be overridden by the derived class to return the number of
items in the list.
(Overrides ReadOnlyCollectionBase<(Of <T>)>..::Count.) |
![]() | Item |
The get part of the indexer must be overridden by the derived class to get
values of the list at a particular index.
|
Explicit Interface Implementations
Name | Description | |
---|---|---|
![]() ![]() | ICollection<(Of <T>)>..::IsReadOnly | (Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |
![]() ![]() | ICollection..::IsSynchronized |
Indicates whether the collection is synchronized.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |
![]() ![]() | ICollection..::SyncRoot |
Indicates the synchronization object for this collection.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |
![]() ![]() | IList..::IsFixedSize |
Returns whether the list is a fixed size. This implementation always returns true.
|
![]() ![]() | IList..::IsReadOnly |
Returns whether the list is read only. This implementation always returns true.
|
![]() ![]() | IList..::Item |
Gets or sets the value at a particular index in the list.
|